.article-writing-section {
    padding: 80px 20px;
    background: linear-gradient(to right, #fefefe, #f3f6fb);
    border-radius: 20px;
    text-align: center;
    animation: sectionFade 1.2s ease-in;
  }
  
  .article-header h2 {
    font-size: 36px;
    color: #202e54;
    margin-bottom: 10px;
    animation: slideInDown 0.8s ease;
  }
  
  .article-header p {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
    animation: fadeIn 1s ease-in-out;
  }
  
  .article-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  
  .article-card {
    background: #ffffff;
    width: 270px;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transform: translateY(40px);
    opacity: 0;
    animation: fadeUp 1s forwards;
  }
  
  .article-card:nth-child(1) { animation-delay: 0.2s; }
  .article-card:nth-child(2) { animation-delay: 0.4s; }
  .article-card:nth-child(3) { animation-delay: 0.6s; }
  
  .article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  }
  
  .article-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
  }
  
  .article-card h3 {
    font-size: 20px;
    color: #1a4da1;
    margin-bottom: 8px;
  }
  
  .article-card p {
    font-size: 15px;
    color: #666;
  }
  
  /* Animations */
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes sectionFade {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes slideInDown {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .article-features {
      flex-direction: column;
      align-items: center;
    }
  
    .article-card {
      width: 90%;
    }
  }
  